Note: This tutorial assumes that you have completed the previous tutorials: Xbot Bringup, PC Bringup.
(!) Please ask about problems and questions regarding this tutorial on answers.ros.org. Don't forget to include in your question the link to this page, the versions of your OS & ROS, and also add appropriate tags.

Xbot Obstacle Avoidance

Description: How to launch obstacle avoidance module for xbot

Tutorial Level: BEGINNER

Package Summary

This tutorial shows how to launch the xbot obstacle avoidance module and explains how it works.

Overview

This package is mainly the obstacle avoidance module for Xbot.

To implement obstacle avoidance, a Finite-State Machine(FSM) is designed, which manages robot states and makes it more extensible.

The robot states currently includes: Advance, Stop and Retreat, defined by its action(statename) and timestamp when the state started.

When a specific Event is triggered, xbot will transform from one state to another, with corresponding Action performed, as is illustrated below.

xbot_state_machine

  • Input topics:
  • Output topics:
    • '/cmd_vel_mux/input/safety_controller'(Twist)

Execute

Make sure the minimal software has already been launched on the robot and you have configured your network correctly.

On the Xbot, start obstacle avoidance on TK1.

# From Xbot TK1.
 > roslaunch xbot_obstacle_avoidance xbot_obstacle_avoidance.launch

What Next?

Wiki: xbot/tutorials/indigo/Xbot Obstacle Avoidance (last edited 2017-04-07 09:06:19 by sychaichangkun)